#pragma GCC optimize ("O3")
#include <bits/stdc++.h>
#define ll long long
#define endl '\n'
#define fast ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);
#define file freopen("input.txt","r",stdin);freopen("output.txt","w",stdout);
using namespace std;
const int OO = 0x3f3f3f3f, N = 1e3 + 5, mod = 1e9 + 7;
int a[N], b[N], c[N], d[N];
int hve, n, e, sld;
ll dp[10][1005];
ll go(int idx, int lft) {
if (idx == n) {
ll can = lft / e;
return can * sld;
}
ll &ans = dp[idx][lft];
if (~ans) {
return ans;
}
ans = go(idx + 1, lft);
for (int i = 1; i * b[idx] <= a[idx] && i * c[idx] <= lft; i++) {
ans = max(ans, go(idx + 1, lft - (i * c[idx])) + (i * d[idx]));
}
return ans;
}
void solve() {
cin >> hve >> n >> e >> sld;
for (int i = 0; i < n; i++) {
cin >> a[i] >> b[i] >> c[i] >> d[i];
}
memset(dp, -1, sizeof dp);
cout << go(0, hve);
}
int main() {
fast;
int tc = 1;
// cin >> tc;
while (tc--) {
solve();
}
}
1302. Deepest Leaves Sum | 1209. Remove All Adjacent Duplicates in String II |
994. Rotting Oranges | 983. Minimum Cost For Tickets |
973. K Closest Points to Origin | 969. Pancake Sorting |
967. Numbers With Same Consecutive Differences | 957. Prison Cells After N Days |
946. Validate Stack Sequences | 921. Minimum Add to Make Parentheses Valid |
881. Boats to Save People | 497. Random Point in Non-overlapping Rectangles |
528. Random Pick with Weight | 470. Implement Rand10() Using Rand7() |
866. Prime Palindrome | 1516A - Tit for Tat |
622. Design Circular Queue | 814. Binary Tree Pruning |
791. Custom Sort String | 787. Cheapest Flights Within K Stops |
779. K-th Symbol in Grammar | 701. Insert into a Binary Search Tree |
429. N-ary Tree Level Order Traversal | 739. Daily Temperatures |
647. Palindromic Substrings | 583. Delete Operation for Two Strings |
518. Coin Change 2 | 516. Longest Palindromic Subsequence |
468. Validate IP Address | 450. Delete Node in a BST |